home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ussbc23.zip / DEMOS / REPORTFM.DFM / REPORTFM.txt
Text File  |  1996-07-18  |  5KB  |  216 lines

  1. object fmReport: TfmReport
  2.   Left = 73
  3.   Top = 159
  4.   Width = 685
  5.   Height = 389
  6.   HorzScrollBar.Range = 1200
  7.   VertScrollBar.Range = 2000
  8.   AutoScroll = False
  9.   Caption = 'fmReport'
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'Arial'
  13.   Font.Style = []
  14.   PixelsPerInch = 96
  15.   Scaled = False
  16.   TextHeight = 14
  17.   object SSBarcode1: TSSBarcode
  18.     Left = 216
  19.     Top = 136
  20.     Width = 257
  21.     Height = 13
  22.     BarCodeType = bcPostnet
  23.     BarColor = clBlack
  24.     BarWidth = 0.019999999552965160
  25.     Data = '94766-1234'
  26.     DataField = 'Zip'
  27.     DataSource = dsCustomer
  28.     PrintHumanReadable = False
  29.     WideBarRatio = 3.000000000000000000
  30.     Color = clWhite
  31.     Font.Color = clWindowText
  32.     Font.Height = 6
  33.     Font.Name = 'Arial'
  34.     Font.Style = []
  35.     Visible = False
  36.   end
  37.   object bndDetail: TQRBand
  38.     Left = 0
  39.     Top = 0
  40.     Width = 1200
  41.     Height = 121
  42.     Align = alTop
  43.     BandType = rbDetail
  44.     Color = clWhite
  45.     ForceNewPage = False
  46.     Frame.DrawTop = False
  47.     Frame.DrawBottom = False
  48.     Frame.DrawLeft = False
  49.     Frame.DrawRight = False
  50.     Ruler = qrrInchesV
  51.     object QRDBText1: TQRDBText
  52.       Left = 56
  53.       Top = 32
  54.       Width = 177
  55.       Height = 17
  56.       AlignToBand = False
  57.       DataSource = dsCustomer
  58.       DataField = 'Contact'
  59.     end
  60.     object QRDBText2: TQRDBText
  61.       Left = 56
  62.       Top = 48
  63.       Width = 185
  64.       Height = 17
  65.       AlignToBand = False
  66.       DataSource = dsCustomer
  67.       DataField = 'Company'
  68.     end
  69.     object QRDBText3: TQRDBText
  70.       Left = 56
  71.       Top = 64
  72.       Width = 185
  73.       Height = 17
  74.       AlignToBand = False
  75.       DataSource = dsCustomer
  76.       DataField = 'Addr1'
  77.     end
  78.     object QRDBText4: TQRDBText
  79.       Left = 56
  80.       Top = 80
  81.       Width = 185
  82.       Height = 17
  83.       AlignToBand = False
  84.       DataSource = dsCustomer
  85.       DataField = 'Addr2'
  86.     end
  87.     object QRDBText5: TQRDBText
  88.       Left = 56
  89.       Top = 96
  90.       Width = 105
  91.       Height = 17
  92.       AlignToBand = False
  93.       DataSource = dsCustomer
  94.       DataField = 'City'
  95.     end
  96.     object QRDBText6: TQRDBText
  97.       Left = 168
  98.       Top = 96
  99.       Width = 25
  100.       Height = 17
  101.       AlignToBand = False
  102.       DataSource = dsCustomer
  103.       DataField = 'State'
  104.     end
  105.     object QRDBText7: TQRDBText
  106.       Left = 192
  107.       Top = 96
  108.       Width = 73
  109.       Height = 17
  110.       AlignToBand = False
  111.       DataSource = dsCustomer
  112.       DataField = 'Zip'
  113.     end
  114.     object QRssBarcode1: TQRssBarcode
  115.       Left = 56
  116.       Top = 16
  117.       Width = 257
  118.       Height = 13
  119.       Barcode = SSBarcode1
  120.     end
  121.   end
  122.   object btReport: TButton
  123.     Left = 32
  124.     Top = 128
  125.     Width = 169
  126.     Height = 49
  127.     Caption = '&Preview Report'
  128.     TabOrder = 1
  129.     OnClick = btReportClick
  130.   end
  131.   object QuickReport: TQuickReport
  132.     DataSource = dsCustomer
  133.     OnFilter = QuickReportFilter
  134.     ColumnMarginInches = 0
  135.     ColumnMarginMM = 0
  136.     Columns = 3
  137.     DisplayPrintDialog = False
  138.     LeftMarginInches = 0
  139.     LeftMarginMM = 0
  140.     Orientation = poPortrait
  141.     PageFrame.DrawTop = False
  142.     PageFrame.DrawBottom = False
  143.     PageFrame.DrawLeft = False
  144.     PageFrame.DrawRight = False
  145.     PaperLength = 0
  146.     PaperSize = qrpDefault
  147.     PaperWidth = 0
  148.     PrintOrder = qrColByCol
  149.     ReportTitle = 'ssBarcode w/QR Sample'
  150.     RestartData = True
  151.     SQLCompatible = False
  152.     TitleBeforeHeader = False
  153.     Left = 32
  154.     Top = 184
  155.   end
  156.   object tbCustomer: TTable
  157.     Active = True
  158.     DatabaseName = 'DBDEMOS'
  159.     TableName = 'CUSTOMER.DB'
  160.     Left = 64
  161.     Top = 184
  162.     object tbCustomerCustNo: TFloatField
  163.       FieldName = 'CustNo'
  164.     end
  165.     object tbCustomerCompany: TStringField
  166.       FieldName = 'Company'
  167.       Size = 30
  168.     end
  169.     object tbCustomerAddr1: TStringField
  170.       FieldName = 'Addr1'
  171.       Size = 30
  172.     end
  173.     object tbCustomerAddr2: TStringField
  174.       FieldName = 'Addr2'
  175.       Size = 30
  176.     end
  177.     object tbCustomerCity: TStringField
  178.       FieldName = 'City'
  179.       Size = 15
  180.     end
  181.     object tbCustomerState: TStringField
  182.       FieldName = 'State'
  183.     end
  184.     object tbCustomerZip: TStringField
  185.       FieldName = 'Zip'
  186.       OnGetText = tbCustomerZipGetText
  187.       Size = 10
  188.     end
  189.     object tbCustomerCountry: TStringField
  190.       FieldName = 'Country'
  191.     end
  192.     object tbCustomerPhone: TStringField
  193.       FieldName = 'Phone'
  194.       Size = 15
  195.     end
  196.     object tbCustomerFAX: TStringField
  197.       FieldName = 'FAX'
  198.       Size = 15
  199.     end
  200.     object tbCustomerTaxRate: TFloatField
  201.       FieldName = 'TaxRate'
  202.     end
  203.     object tbCustomerContact: TStringField
  204.       FieldName = 'Contact'
  205.     end
  206.     object tbCustomerLastInvoiceDate: TDateTimeField
  207.       FieldName = 'LastInvoiceDate'
  208.     end
  209.   end
  210.   object dsCustomer: TDataSource
  211.     DataSet = tbCustomer
  212.     Left = 96
  213.     Top = 184
  214.   end
  215. end
  216.